home *** CD-ROM | disk | FTP | other *** search
- global gqtvrinstance, nodepict, pointx, pointy, compassline1, compassline2, anglelist, returnlist
-
- on jumptonode jumptonodeid, changangle
- if isqtvrmovie(gqtvrinstance) then
- set tCurrentNodeID to qtvrgetnodeid(gqtvrinstance)
- if (jumptonodeid <> tCurrentNodeID) or not voidp(changangle) or (getProp(returnlist, #flag) = 1) then
- SetPanoNode(jumptonodeid, 0)
- if not voidp(changangle) then
- put changangle into field "PanAngle"
- put 60 into field "FOV"
- end if
- set panAngle to the text of member "PanAngle"
- set FOV to the text of member "FOV"
- set tiltAngle to the text of member "TiltAngle"
- set quality to the text of member "Quality"
- SetMovieView(panAngle, tiltAngle, FOV, "3", "1", quality)
- setcompass(jumptonodeid)
- end if
- end if
- end
-
- on compass angle, length, x0, y0
- puppetSprite(compassline1, 1)
- puppetSprite(compassline2, 1)
- set angle to angle + 180
- set angle1 to angle - 90
- set a to float(angle) / 360
- set b to float(angle1) / 360
- set a to a * 2 * PI
- set b to b * 2 * PI
- set x to cos(a) * length
- set y to sin(a) * length
- if (x >= 0) and (x < 2) then
- set x to 2
- end if
- if (y >= 0) and (y < 2) then
- set y to 2
- end if
- if (x < 0) and (x > -2) then
- set x to -2
- end if
- if (y < 0) and (y > -2) then
- set y to -2
- end if
- set x1 to cos(b) * length
- set y1 to sin(b) * length
- if (x1 >= 0) and (x1 < 2) then
- set x1 to 2
- end if
- if (y1 >= 0) and (y1 < 2) then
- set y1 to 2
- end if
- if (x1 < 0) and (x1 > -2) then
- set x1 to -2
- end if
- if (y1 < 0) and (y1 > -2) then
- set y1 to -2
- end if
- set r to rect(x0, y0, x + x0, y + y0)
- set t to rect(x0, y0, x1 + x0, y1 + y0)
- if ((x < 0) and (y > 0)) or ((x > 0) and (y < 0)) then
- set the memberNum of sprite compassline1 to the number of member "line2"
- else
- set the memberNum of sprite compassline1 to the number of member "line1"
- end if
- if ((x1 < 0) and (y1 > 0)) or ((x1 > 0) and (y1 < 0)) then
- set the memberNum of sprite compassline2 to the number of member "line2"
- else
- set the memberNum of sprite compassline2 to the number of member "line1"
- end if
- set the rect of sprite compassline1 to r
- set the rect of sprite compassline2 to t
- updateStage()
- end
-
- on setcompass node
- global roomnumber, objmarker, roomname, gqtvrinstance
- set pointx to the locH of sprite nodepict
- set pointy to the locV of sprite nodepict
- set currnodeid to qtvrgetnodeid(gqtvrinstance)
- if (roomnumber = "000") and (the frame > (label("Room") + 3)) then
- if currnodeid = 1 then
- set pointx to 278
- set pointy to 179
- else
- if currnodeid = 5 then
- set pointx to 314
- set pointy to 159
- end if
- end if
- compass(360 - the text of member "PanAngle" + getAt(anglelist, node), 20, pointx, pointy)
- set the visible of sprite objmarker to 0
- qtvrupdate(gqtvrinstance)
- updateStage()
- go(the frame - 2)
- end if
- if isqtvrmovie(gqtvrinstance) then
- compass(360 - the text of member "PanAngle" + getAt(anglelist, node), 20, pointx, pointy)
- end if
- end
-
- on SetPanoNode pNodeID, pUpdate, pQuality
- if isqtvrmovie(gqtvrinstance) then
- qtvrsetnodeid(gqtvrinstance, pNodeID)
- if not voidp(pQuality) then
- qtvrsetquality(gqtvrinstance, pQuality)
- end if
- if pUpdate then
- qtvrupdate(gqtvrinstance)
- end if
- end if
- end
-
- on SetMovieView pPan, pTilt, pFOV, pSwingSpeed, pSwingQuality, pFinalQuality
- if isqtvrmovie(gqtvrinstance) then
- qtvrsetfov(gqtvrinstance, pFOV)
- qtvrsettiltangle(gqtvrinstance, pTilt)
- qtvrsetpanangle(gqtvrinstance, pPan)
- qtvrsettransitionmode(gqtvrinstance, "normal")
- if pFinalQuality <> pSwingQuality then
- qtvrsetquality(gqtvrinstance, pFinalQuality)
- qtvrupdate(gqtvrinstance)
- end if
- end if
- end
-